Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / RecentItemsEventHandler<T> Delegate
The source of the event.
The event data.


In This Topic
    RecentItemsEventHandler<T> Delegate
    In This Topic
    Represents a method that handles the FpSpread.QueryRecentItems event of an FpSpread.
    Syntax
    'Declaration
     
    
    Public Delegate Sub RecentItemsEventHandler(Of T)( _
       ByVal sender As Object, _
       ByVal e As RecentItemsEventArgs(Of T) _
    ) 
    'Usage
     
    
    Dim instance As New RecentItemsEventHandler(Of T)(AddressOf HandlerMethod)
    public delegate void RecentItemsEventHandler<T>( 
       object sender,
       RecentItemsEventArgs<T> e
    )

    Parameters

    sender
    The source of the event.
    e
    The event data.

    Type Parameters

    T
    See Also